home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n10 / contct.doc < prev    next >
Text File  |  1991-09-10  |  2KB  |  41 lines

  1. PC/Computing               October 1991         CONTACT.DOC
  2. David Rygmyr                                       Page 306
  3.  
  4.  
  5.       A Do-It-Yourself Database Courtesy of QBasic
  6.       -----------------------------------------------
  7.       Locate information about contacts even when you can't
  8.       remember their names.
  9.  
  10.  
  11. CONTACTS.BAS, a simple QBASIC program, records names and
  12. phone numbers in a file named CONTACTS.TXT.  It also lets
  13. you search through the database file for information you've
  14. already entered, by either first or last name; when it
  15. finds a match, it displays the record (or records, if it
  16. finds more than one).
  17.  
  18. To use CONTACTS.BAS, you'll need a copy of QBasic, and if
  19. you haven't yet moved to DOS 5.0, here's another incentive:
  20. The upgrade includes QBasic and its development environment.
  21.  
  22. The simplest way to use CONTACTS.BAS is to create a
  23. CONTACTS.BAT batch file containing this command:
  24.  
  25.       QBASIC /RUN CONTACTS.BAS
  26.  
  27. This assumes you're starting the program from the directory
  28. that contains both CONTACTS.BAS and CONTACTS.TXT. If
  29. they're in another directory, you should begin the batch
  30. file with a line that changes to the directory containing
  31. those files. Otherwise, you might findf yourself with
  32. several copies of CONTACTS.TXT on your disk instead of one.
  33. (CONTACTS.BAS opens or creates CONTACTS.TXT in the current
  34. directory.
  35.  
  36.  
  37. Material in this document may not be reproduced in any form 
  38. without permission. Written requests for permission should 
  39. be addressed to Chantal Lavelanet, Ziff-Davis Publishing 
  40. Company, One Park Avenue, New York, NY  10016.
  41.